home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / waiter.zip / WAITER.MAN < prev   
Text File  |  1993-03-04  |  3KB  |  134 lines

  1. WAITER                    Ed's Utility Manual                    WAITER
  2.  
  3.  
  4. SUMMARY
  5.  
  6.     waiter - inserts a pause so the user can bail
  7.  
  8. PARAMETERS
  9.  
  10.     waiter [-q -s seconds] msgline1 msgline2....
  11.  
  12. DESCRIPTION
  13.  
  14.     Waiter counts down for a default of five seconds, then
  15.     terminates with ERRORLEVEL 0.  If the user presses a key during
  16.     countdown, waiter terminates with ERRORLEVEL 1.  
  17.  
  18.     A hidden feature allows the user to terminate with ERRORLEVEL 0
  19.     by pressing ctrl-A. This allows the impatient user to override 
  20.     the wait, but take the default action.
  21.  
  22. OPTIONS
  23.  
  24.     s    seconds.  Overrides the default ten seconds.  3600
  25.         seconds, for example, waits an hour.
  26.  
  27.     q    quiet.  Suppresses copyright message for use in batch
  28.         files.  
  29.  
  30. EXAMPLES
  31.  
  32.     rem bottom of batch file
  33.     waiter -qs5 "Press any key to" "avoid starting windows" 
  34.     if ERRORLEVEL 1 goto around
  35.     win
  36.     :around
  37.     rem batch file ends in DOS here
  38.  
  39. AUTHORSHIP AND COPYRIGHT
  40.  
  41.     Edward W.  Greenberg
  42.     1600 Stokes Street #24
  43.     San Jose, CA 95126
  44.  
  45.     CIS: 76703,1070
  46.     Internet: edg@netcom.com
  47.  
  48.     This document, and the accompanying program are Copyright
  49.     1993 by Edward W. Greenberg, San Jose, California.  They may
  50.     not be reproduced for profit or gain with the exception that
  51.     a reasonable disk reproduction fee may be charged.  They may
  52.     be freely shared on diskette, on Bulletin Board Systems or
  53.     on for-profit on-line services, so long as no charge is made
  54.     for them in excess of the normal on-line charge for such
  55.     service.
  56.  
  57.     This software is released as freeware.  A license is granted to any
  58.     individual or business to USE this software on computers owned by that
  59.     individual or business, but no license is issued to incorporate
  60.     the software in any released product.
  61.  
  62.  
  63.  
  64.  
  65.  
  66.                                        Page 4
  67.  
  68.  
  69.  
  70.  
  71.  
  72.           MAP                    Ed's Utility Manual                    MAP
  73.  
  74.  
  75.           SHAREWARE
  76.  
  77.                This program represents about 20 hours work.  I have made it
  78.                available on CompuServe and encourage it's distribution on
  79.                other shareware media.
  80.  
  81.                If you'd like to acknowledge the usefulness of this program,
  82.                and encourage further development of SIMCITY utilities,
  83.                please register with a $10 shareware contribution.  I'll
  84.                notify registered users of new versions and other utilities.
  85.                Whether or not you send a shareware contribution, please
  86.                drop me an electronic note, or a postcard, and let me know
  87.                that you're using the program and what you think of it.
  88.  
  89.           OTHER TRADEMARKS
  90.  
  91.                SIMCITY is a trademark of Maxis.
  92.                LASERJET and DESKJET are trademarks of Hewlett Packard, as
  93.                is HP.
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.                                        Page 5
  133.  
  134.